home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / EmacsTeX / aa_m68k_Intel_Only / TeXmenu4.1 / TeXmenu.pkg / TeXmenu.pre_install < prev    next >
Encoding:
Text File  |  1995-06-12  |  385 b   |  22 lines

  1. #!/bin/sh
  2. #
  3. #    Prepare TeXmenu.tar.gz to work with Installer
  4. #
  5.  
  6. cd $1
  7.  
  8. if [ -f TeXmenu.tar.gz ]
  9.     then
  10.         echo -n Gunziping and compressing package ...
  11.         if ./gunzip < TeXmenu.tar.gz | /usr/ucb/compress -f > TeXmenu.tar.Z
  12.         then
  13.             echo " OK."
  14.         rm -f TeXmenu.tar.gz
  15.         else
  16.             echo " Failed! Probably not enough disk space?"
  17.         exit 1
  18.         fi
  19.     fi
  20.  
  21. true
  22.